home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / MacApp Release 10 - HD Ready / Examples / A-Z / Q / QuickDraw3D / Simple QuickDraw 3D View / UQD3DApplication.h < prev    next >
Encoding:
Text File  |  1996-04-03  |  816 b   |  38 lines  |  [TEXT/MPS ]

  1. // UQD3DApplication.h
  2. // Copyright © 1996 by Apple Computer, Inc. All rights reserved. 
  3.  
  4.  
  5. #ifndef __UQD3DApplication__
  6. #define __UQD3DApplication__
  7.  
  8. #ifndef __UAPPLICATION__
  9. #include "UApplication.h"
  10. #endif
  11.  
  12. //----------------------------------------------------------------------------------------
  13. // TQD3DApplication
  14. //----------------------------------------------------------------------------------------
  15.  
  16. class TQD3DApplication: public TApplication
  17. {
  18.     MA_DECLARE_CLASS;
  19.  
  20. public:
  21.     
  22.     TQD3DApplication();
  23.         // Constructor
  24.     
  25.     virtual ~TQD3DApplication();
  26.         // Destructor
  27.     
  28.     virtual void IQD3DApplication();
  29.     
  30.     // Documents
  31.     virtual TDocument*     DoMakeDocument(CommandNumber itsCommandNumber, TFile* itsFile);    
  32.     virtual void         DoSetupMenus();
  33.     virtual void        DoMenuCommand(CommandNumber aCommandNumber);
  34.  
  35. };    
  36.  
  37. #endif
  38.